home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / misc_pto / 29ksim / dhry1-1.c < prev    next >
Text File  |  1988-02-06  |  24KB  |  712 lines

  1. /* printf's changed to fprintf's for SIP simulator */
  2.  
  3. /*    EVERBODY:    Please read "APOLOGY" below. -rick 01/06/86
  4.  *
  5.  *    "DHRYSTONE" Benchmark Program
  6.  *
  7.  *    Version:    C/1.1, 12/01/84
  8.  *
  9.  *    Date:        PROGRAM updated 01/06/86, RESULTS updated 02/17/86
  10.  *
  11.  *    Author:        Reinhold P. Weicker,  CACM Vol 27, No 10, 10/84 pg. 1013
  12.  *            Translated from ADA by Rick Richardson
  13.  *            Every method to preserve ADA-likeness has been used,
  14.  *            at the expense of C-ness.
  15.  *
  16.  *    Compile:    cc -O dry.c -o drynr            : No registers
  17.  *            cc -O -DREG=register dry.c -o dryr    : Registers
  18.  *
  19.  *    Defines:    Defines are provided for old C compiler's
  20.  *            which don't have enums, and can't assign structures.
  21.  *            The time(2) function is library dependant; Most
  22.  *            return the time in seconds, but beware of some, like
  23.  *            Aztec C, which return other units.
  24.  *            The LOOPS define is initially set for 50000 loops.
  25.  *            If you have a machine with large integers and is
  26.  *            very fast, please change this number to 500000 to
  27.  *            get better accuracy.  Please select the way to
  28.  *            measure the execution time using the TIME define.
  29.  *            For single user machines, time(2) is adequate. For
  30.  *            multi-user machines where you cannot get single-user
  31.  *            access, use the times(2) function.  If you have
  32.  *            neither, use a stopwatch in the dead of night.
  33.  *            Use a "printf" at the point marked "start timer"
  34.  *            to begin your timings. DO NOT use the UNIX "time(1)"
  35.  *            command, as this will measure the total time to
  36.  *            run this program, which will (erroneously) include
  37.  *            the time to malloc(3) storage and to compute the
  38.  *            time it takes to do nothing.
  39.  *
  40.  *    Run:        drynr; dryr
  41.  *
  42.  *    Results:    If you get any new machine/OS results, please send to:
  43.  *
  44.  *                {ihnp4,vax135,..}!houxm!castor!pcrat!rick
  45.  *
  46.  *            and thanks to all that do.  Space prevents listing
  47.  *            the names of those who have provided some of these
  48.  *            results.  I'll be forwarding these results to
  49.  *            Rheinhold Weicker.
  50.  *
  51.  *    Note:        I order the list in increasing performance of the
  52.  *            "with registers" benchmark.  If the compiler doesn't
  53.  *            provide register variables, then the benchmark
  54.  *            is the same for both REG and NOREG.
  55.  *
  56.  *    PLEASE:        Send complete information about the machine type,
  57.  *            clock speed, OS and C manufacturer/version.  If
  58.  *            the machine is modified, tell me what was done.
  59.  *            On UNIX, execute uname -a and cc -V to get this info.
  60.  *
  61.  *    80x8x NOTE:    80x8x benchers: please try to do all memory models
  62.  *            for a particular compiler.
  63.  *
  64.  *    APOLOGY (1/30/86):
  65.  *        Well, I goofed things up!  As pointed out by Haakon Bugge,
  66.  *        the line of code marked "GOOF" below was missing from the
  67.  *        Dhrystone distribution for the last several months.  It
  68.  *        *WAS* in a backup copy I made last winter, so no doubt it
  69.  *        was victimized by sleepy fingers operating vi!
  70.  *
  71.  *        The effect of the line missing is that the reported benchmarks
  72.  *        are 15% too fast (at least on a 80286).  Now, this creates
  73.  *        a dilema - do I throw out ALL the data so far collected
  74.  *        and use only results from this (corrected) version, or
  75.  *        do I just keep collecting data for the old version?
  76.  *
  77.  *        Since the data collected so far *is* valid as long as it
  78.  *        is compared with like data, I have decided to keep
  79.  *        TWO lists- one for the old benchmark, and one for the
  80.  *        new.  This also gives me an opportunity to correct one
  81.  *        other error I made in the instructions for this benchmark.
  82.  *        My experience with C compilers has been mostly with
  83.  *        UNIX 'pcc' derived compilers, where the 'optimizer' simply
  84.  *        fixes sloppy code generation (peephole optimization).
  85.  *        But today, there exist C compiler optimizers that will actually
  86.  *        perform optimization in the Computer Science sense of the word,
  87.  *        by removing, for example, assignments to a variable whose
  88.  *        value is never used.  Dhrystone, unfortunately, provides
  89.  *        lots of opportunities for this sort of optimization.
  90.  *
  91.  *        I request that benchmarkers re-run this new, corrected
  92.  *        version of Dhrystone, turning off or bypassing optimizers
  93.  *        which perform more than peephole optimization.  Please
  94.  *        indicate the version of Dhrystone used when reporting the
  95.  *        results to me.
  96.  *        
  97.  * RESULTS BEGIN HERE
  98.  *
  99.  *----------------DHRYSTONE VERSION 1.1 RESULTS BEGIN--------------------------
  100.  *
  101.  * MACHINE    MICROPROCESSOR    OPERATING    COMPILER    DHRYSTONES/SEC.
  102.  * TYPE                SYSTEM                NO REG    REGS
  103.  * --------------------------    ------------    -----------    ---------------
  104.  * IBM PC/AT    80286-7.5Mhz    Venix/286 SVR2  cc              1159    1254 *15
  105.  * IBM RT/PC    ROMP            AIX 1.0         cc              1547    1655
  106.  * AMD          Am29000(1-Wait) Simulator       cc (internal)  20532   20532
  107.  * AMD          Am29000(1-Wait) Simulator       MetaWare Hi C  37203   37203
  108.  *
  109.  *
  110.  *----------------DHRYSTONE VERSION 1.0 RESULTS BEGIN--------------------------
  111.  *
  112.  * MACHINE    MICROPROCESSOR    OPERATING    COMPILER    DHRYSTONES/SEC.
  113.  * TYPE                SYSTEM                NO REG    REGS
  114.  * --------------------------    ------------    -----------    ---------------
  115.  * Commodore 64    6510-1MHz    C64 ROM        C Power 2.8      36      36
  116.  * HP-110    8086-5.33Mhz    MSDOS 2.11    Lattice 2.14     284     284
  117.  * IBM PC/XT    8088-4.77Mhz    PC/IX        cc         271     294
  118.  * CCC 3205    ?        Xelos(SVR2)     cc         279     296
  119.  * Perq-II    2901 bitslice    Accent S5c     cc (CMU)     301     301
  120.  * IBM PC/XT    8088-4.77Mhz    COHERENT 2.3.43    MarkWilliams cc  296     317
  121.  * Cosmos    68000-8Mhz    UniSoft        cc         305     322
  122.  * IBM PC/XT    8088-4.77Mhz    Venix/86 2.0    cc         297     324
  123.  * DEC PRO 350  11/23           Venix/PRO SVR2  cc               299     325
  124.  * IBM PC    8088-4.77Mhz    MSDOS 2.0    b16cc 2.0     310     340
  125.  * PDP11/23    11/23           Venix (V7)      cc               320     358
  126.  * Commodore Amiga        ?        Lattice 3.02     368     371
  127.  * PC/XT        8088-4.77Mhz    Venix/86 SYS V  cc               339     377
  128.  * IBM PC    8088-4.77Mhz    MSDOS 2.0    CI-C86 2.20M     390     390
  129.  * IBM PC/XT    8088-4.77Mhz    PCDOS 2.1    Wizard 2.1     367     403
  130.  * IBM PC/XT    8088-4.77Mhz    PCDOS 3.1    Lattice 2.15     403     403 @
  131.  * Colex DM-6    68010-8Mhz    Unisoft SYSV    cc         378     410
  132.  * IBM PC    8088-4.77Mhz    PCDOS 3.1    Datalight 1.10     416     416
  133.  * IBM PC    NEC V20-4.77Mhz    MSDOS 3.1    MS 3.1          387     420
  134.  * IBM PC/XT    8088-4.77Mhz    PCDOS 2.1    Microsoft 3.0     390     427
  135.  * IBM PC    NEC V20-4.77Mhz    MSDOS 3.1    MS 3.1 (186)      393     427
  136.  * PDP-11/34    -        UNIX V7M    cc         387     438
  137.  * IBM PC    8088, 4.77mhz    PC-DOS 2.1    Aztec C v3.2d     423     454
  138.  * Tandy 1000    V20, 4.77mhz    MS-DOS 2.11    Aztec C v3.2d     423     458
  139.  * Tandy TRS-16B 68000-6Mhz    Xenix 1.3.5    cc         438     458
  140.  * PDP-11/34    -        RSTS/E        decus c         438     495
  141.  * Onyx C8002    Z8000-4Mhz    IS/1 1.1 (V7)    cc         476     511
  142.  * CCC 3230            Xelos (SysV.2)    cc         507     565
  143.  * Tandy TRS-16B 68000-6Mhz    Xenix 1.3.5    Green Hills     609     617
  144.  * DEC PRO 380  11/73           Venix/PRO SVR2  cc               577     628
  145.  * FHL QT+    68000-10Mhz    Os9/68000    version 1.3     603     649 FH
  146.  * Apollo DN550    68010-?Mhz    AegisSR9/IX    cc 3.12         666     666
  147.  * HP-110    8086-5.33Mhz    MSDOS 2.11    Aztec-C         641     676 
  148.  * ATT PC6300    8086-8Mhz    MSDOS 2.11    b16cc 2.0     632     684
  149.  * IBM PC/AT    80286-6Mhz    PCDOS 3.0    CI-C86 2.1     666     684
  150.  * Tandy 6000    68000-8Mhz    Xenix 3.0    cc         694     694
  151.  * IBM PC/AT    80286-6Mhz    Xenix 3.0    cc         684     704 MM
  152.  * Macintosh    68000-7.8Mhz 2M    Mac Rom        Mac C 32 bit int 694     704
  153.  * Macintosh    68000-7.7Mhz    -        MegaMax C 2.0     661     709
  154.  * IBM PC/AT    80286-6Mhz    Xenix 3.0    cc         704     714 LM
  155.  * Codata 3300    68000-8Mhz    UniPlus+ (v7)    cc         678     725
  156.  * WICAT MB    68000-8Mhz    System V    WICAT C 4.1     585     731 ~
  157.  * Cadmus 9000    68010-10Mhz    UNIX        cc         714     735
  158.  * AT&T 6300    8086-8Mhz       Venix/86 SVR2   cc               668     743
  159.  * Cadmus 9790    68010-10Mhz 1MB    SVR0,Cadmus3.7    cc         720     747
  160.  * NEC PC9801F    8086-8Mhz    PCDOS 2.11    Lattice 2.15     768      -  @
  161.  * ATT PC6300    8086-8Mhz    MSDOS 2.11    CI-C86 2.20M     769     769
  162.  * Burroughs XE550 68010-10Mhz    Centix 2.10    cc         769     769 CT1
  163.  * EAGLE/TURBO  8086-8Mhz       Venix/86 SVR2   c00-12Mhz    System-V/68    cc        1063    1136
  164.  * IBM PC/AT    80286-6Mhz      Venix/286 SVR2  cc              1056    1149
  165.  * Plexus P/60  MC68000-12.5Mhz    UNIX SYSIII    Plexus        1111    1163 T
  166.  * IBM PC/AT    80286-6Mhz    PCDOS 3.0    Datalight 1.10    1190    1190
  167.  * ATT PC6300+    80286-6Mhz    MSDOS 3.1    b16cc 2.0    1111    1219
  168.  * IBM PC/AT    80286-6Mhz    PCDOS 3.1    Wizard 2.1    1136    1219
  169.  * Sun2/120    68010-10Mhz    Sun 4.2BSD    cc        1136    1219
  170.  * IBM PC/AT    80286-6Mhz    PCDOS 3.0    CI-C86 2.20M    1219    1219
  171.  * WICAT PB    68000-8Mhz    System V    WICAT C 4.1     998    1226 ~
  172.  * MASSCOMP 500    68010-10MHz    RTU V3.0    cc (V3.2)    1156    1238
  173.  * Alliant FX/8 IP (68012-12Mhz) Concentrix    cc -ip;exec -i     1170    1243 FX
  174.  * Cyb DataMate    68010-12.5Mhz    Uniplus 5.0    Unisoft cc    1162    1250
  175.  * PDP 11/70    -        UNIX 5.2    cc        1162    1250
  176.  * IBM PC/AT    80286-6Mhz    PCDOS 3.1    Lattice 2.15    1250    1250
  177.  * IBM PC/AT    80286-7.5Mhz    Venix/86 2.1    cc        1190    1315 *15
  178.  * Sun2/120    68010-10Mhz    Standalone    cc        1219    1315
  179.  * Intel 380    80286-8Mhz    Xenix R3.0up1    cc        1250    1315 *16
  180.  * Sequent Balance 8000    NS32032-10MHz    Dynix 2.0    cc    1250    1315 N12
  181.  * IBM PC/DSI-32 32032-10Mhz    MSDOS 3.1    GreenHills 2.14    1282    1315 C3
  182.  * ATT 3B2/400    WE32100-?Mhz    UNIX 5.2    cc        1315    1315
  183.  * CCC 3250XP    -        Xelos R01(SVR2)    cc        1215    1318
  184.  * IBM PC/RT 032 RISC(801?)?Mhz BSD 4.2         cc              1248    1333 RT
  185.  * DG MV4000    -        AOS/VS 5.00    cc        1333    1333
  186.  * IBM PC/AT    80286-8Mhz    Venix/86 2.1    cc        1275    1380 *16
  187.  * IBM PC/AT    80286-6Mhz    MSDOS 3.0    Microsoft 3.0    1250    1388
  188.  * ATT PC6300+    80286-6Mhz    MSDOS 3.1    CI-C86 2.20M    1428    1428
  189.  * COMPAQ/286   80286-8Mhz      Venix/286 SVR2  cc              1326    1443
  190.  * IBM PC/AT    80286-7.5Mhz    Venix/286 SVR2  cc              1333    1449 *15
  191.  * WICAT PB    68000-8Mhz    System V    WICAT C 4.1    1169    1464 S~
  192.  * Tandy II/6000 68000-8Mhz    Xenix 3.0    cc          1384    1477
  193.  * WICAT MB    68000-12.5Mhz    System V    WICAT C 4.1    1246    1537 ~
  194.  * IBM PC/AT    80286-9Mhz      SCO Xenix V     cc              1540    1556 *18
  195.  * Cyb DataMate    68010-12.5Mhz    Uniplus 5.0    Unisoft cc    1470    1562 S
  196.  * VAX 11/780    -        UNIX 5.2    cc        1515    1562
  197.  * MicroVAX-II    -        -        -        1562    1612
  198.  * VAX 11/780    -        UNIX 4.3bsd    cc        1646    1662
  199.  * Apollo DN660    -        AegisSR9/IX    cc 3.12        1666    1666
  200.  * ATT 3B20    -        UNIX 5.2    cc        1515    1724
  201.  * NEC PC-98XA    80286-8Mhz    PCDOS 3.1    Lattice 2.15    1724    1724 @
  202.  * HP9000-500    B series CPU    HP-UX 4.02    cc        1724    -
  203.  * IBM PC/STD    80286-8Mhz    MSDOS 3.0     Microsoft 3.0    1724    1785 C2
  204.  * WICAT MB    68000-12.5Mhz    System V    WICAT C 4.1    1450    1814 S~
  205.  * WICAT PB    68000-12.5Mhz    System V    WICAT C 4.1    1530    1898 ~
  206.  * DEC-2065    KL10-Model B    TOPS-20 6.1FT5    Port. C Comp.    1937    1946
  207.  * Gould PN6005    -        UTX 1.1(4.2BSD)    cc        1675    1964
  208.  * IBM RT/PC    ROMP            AIX 1.0         cc              1628    1886
  209.  * DEC2060    KL-10        TOPS-20        cc        2000    2000 &
  210.  * VAX 11/785    -        UNIX 5.2    cc        2083    2083
  211.  * VAX 11/785    -        VMS        VAX-11 C 2.0    2083    2083
  212.  * VAX 11/785    -        UNIX SVR2    cc        2123    2083
  213.  * VAX 11/785   -               ULTRIX-32 1.1   cc        2083    2091 
  214.  * VAX 11/785    -        UNIX 4.3bsd    cc        2135    2136
  215.  * WICAT PB    68000-12.5Mhz    System V    WICAT C 4.1    1780    2233 S~
  216.  * Pyramid 90x    -        OSx 2.3        cc        2272    2272
  217.  * Pyramid 90x    FPA,cache,4Mb    OSx 2.5        cc no -O    2777    2777
  218.  * Pyramid 90x    w/cache        OSx 2.5        cc w/-O        3333    3333
  219.  * IBM-4341-II    -        VM/SP3        Waterloo C 1.2  3333    3333
  220.  * IRIS-2400T    68020-16.67Mhz    UNIX System V    cc        3105    3401
  221.  * Celerity C-1200 ?        UNIX 4.2BSD    cc        3485    3468
  222.  * SUN 3/75    68020-16.67Mhz    SUN 4.2 V3    cc        3333    3571
  223.  * IBM-4341    Model 12    UTS 5.0        ?        3685    3685
  224.  * SUN-3/160    68020-16.67Mhz  Sun 4.2 V3.0A   cc        3381    3764
  225.  * Sun 3/180    68020-16.67Mhz    Sun 4.2        cc        3333    3846
  226.  * IBM-4341    Model 12    UTS 5.0        ?        3910    3910 MN
  227.  * MC 5400    68020-16.67MHz    RTU V3.0    cc (V4.0)    3952    4054
  228.  * NCR Tower32  68020-16.67Mhz  SYS 5.0 Rel 2.0 cc              3846    4545
  229.  * Gould PN9080    -        UTX-32 1.1c    cc        -    4629
  230.  * MC 5600/5700    68020-16.67MHz    RTU V3.0    cc (V4.0)    4504    4746 %
  231.  * Gould 1460-342 ECL proc      UTX/32 1.1/c    cc              5342    5677 G1
  232.  * VAX 8600    -        UNIX 4.3bsd    cc        7024    7088
  233.  * VAX 8600    -        VMS        VAX-11 C 2.0    7142    7142
  234.  * Alliant FX/8 CE        Concentrix    cc -ce;exec -c     6952    7655 FX
  235.  * CCI POWER 6/32        COS(SV+4.2)    cc        7500    7800
  236.  * CCI POWER 6/32        POWER 6 UNIX/V    cc        8236    8498
  237.  * CCI POWER 6/32        4.2 Rel. 1.2b    cc        8963    9544
  238.  * Sperry (CCI Power 6)        4.2BSD        cc        9345   10000
  239.  * CRAY-X-MP/12       105Mhz    COS 1.14    Cray C         10204   10204
  240.  * IBM-3083    -        UTS 5.0 Rel 1    cc           16666   12500
  241.  * CRAY-1A        80Mhz    CTSS        Cray C 2.0     12100   13888
  242.  * IBM-3083    -        VM/CMS HPO 3.4    Waterloo C 1.2 13889   13889
  243.  * Amdahl 470 V/8         UTS/V 5.2       cc v1.23       15560   15560
  244.  * CRAY-X-MP/48       105Mhz    CTSS        Cray C 2.0     15625   17857
  245.  * AMD          Am29000         Simulator       cc (internal)  22467   22467
  246.  * Amdahl 580    -        UTS 5.0 Rel 1.2    cc v1.5        23076   23076
  247.  * Amdahl 5860             UTS/V 5.2       cc v1.23       28970   28970
  248.  *
  249.  * NOTE
  250.  *   *   Crystal changed from 'stock' to listed value.
  251.  *   +   This Macintosh was upgraded from 128K to 512K in such a way that
  252.  *       the new 384K of memory is not slowed down by video generator accesses.
  253.  *   %   Single processor; MC == MASSCOMP
  254.  *   &   A version 7 C compiler written at New Mexico Tech.
  255.  *   @   vanilla Lattice compiler used with MicroPro standard library
  256.  *   S   Shorts used instead of ints
  257.  *   T     with Chris Torek's patches (whatever they are).
  258.  *   ~   For WICAT Systems: MB=MultiBus, PB=Proprietary Bus
  259.  *   LM  Large Memory Model. (Otherwise, all 80x8x results are small model)
  260.  *   MM  Medium Memory Model. (Otherwise, all 80x8x results are small model)
  261.  *   C1  Univation PC TURBO Co-processor; 9.54Mhz 8086, 640K RAM
  262.  *   C2  Seattle Telecom STD-286 board
  263.  *   C3  Definicon DSI-32 coprocessor
  264.  *   C?  Unknown co-processor board?
  265.  *   CT1 Convergent Technologies MegaFrame, 1 processor.
  266.  *   MN  Using Mike Newtons 'optimizer' (see net.sources).
  267.  *   G1  This Gould machine has 2 processors and was able to run 2 dhrystone
  268.  *       Benchmarks in parallel with no slowdown.
  269.  *   FH  FHC == Frank Hogg Labs (Hazelwood Uniquad 2 in an FHL box).
  270.  *   FX  The Alliant FX/8 is a system consisting of 1-8 CEs (computation
  271.  *     engines) and 1-12 IPs (interactive processors). Note N8 applies.
  272.  *   RT  This is one of the RT's that CMU has been using for awhile.  I'm
  273.  *     not sure that this is identical to the machine that IBM is selling
  274.  *     to the public.
  275.  *   Nnn This machine has multiple processors, allowing "nn" copies of the
  276.  *     benchmark to run in the same time as 1 copy.
  277.  *   ?   I don't trust results marked with '?'.  These were sent to me with
  278.  *       either incomplete info, or with times that just don't make sense.
  279.  *     ?? means I think the performance is too poor, ?! means too good.
  280.  *       If anybody can confirm these figures, please respond.
  281.  *
  282.  *  ABBREVIATIONS
  283.  *    CCC    Concurrent Computer Corp. (was Perkin-Elmer)
  284.  *    MC    Masscomp
  285.  *
  286.  *--------------------------------RESULTS END----------------------------------
  287.  *
  288.  *    The following program contains statements of a high-level programming
  289.  *    language (C) in a distribution considered representative:
  290.  *
  291.  *    assignments            53%
  292.  *    control statements        32%
  293.  *    procedure, function calls    15%
  294.  *
  295.  *    100 statements are dynamically executed.  The program is balanced with
  296.  *    respect to the three aspects:
  297.  *        - statement type
  298.  *        - operand type (for simple data types)
  299.  *        - operand access
  300.  *            operand global, local, parameter, or constant.
  301.  *
  302.  *    The combination of these three aspects is balanced only approximately.
  303.  *
  304.  *    The program does not compute anything meaningfull, but it is
  305.  *    syntactically and semantically correct.
  306.  *
  307.  */
  308.  
  309. /* Accuracy of timings and human fatigue controlled by next two lines */
  310. #define LOOPS    50        /* Use this for slow or 16 bit machines */
  311. /*#define LOOPS    500000        /* Use this for faster machines */
  312.  
  313. /* Compiler dependent options */
  314. #undef    NOENUM            /* Define if compiler has no enum's */
  315. #undef    NOSTRUCTASSIGN        /* Define if compiler can't assign structures */
  316.  
  317. /* define only one of the next two defines */
  318. #undef TIMES            /* Use times(2) time function */
  319. #define TIME            /* Use time(2) time function */
  320.  
  321. /* define the granularity of your times(2) function (when used) */
  322. #define HZ    60        /* times(2) returns 1/60 second (most) */
  323. /*#define HZ    100        /* times(2) returns 1/100 second (WECo) */
  324.  
  325. /* for compatibility with goofed up version */
  326. #undef GOOF            /* Define if you want the goofed up version */
  327.  
  328. #ifdef GOOF
  329. char    Version[] = "1.0";
  330. #else
  331. char    Version[] = "1.1";
  332. #endif
  333.  
  334. #ifdef    NOSTRUCTASSIGN
  335. #define    structassign(d, s)    memcpy(&(d), &(s), sizeof(d))
  336. #else
  337. #define    structassign(d, s)    d = s
  338. #endif
  339.  
  340. #ifdef    NOENUM
  341. #define    Ident1    1
  342. #define    Ident2    2
  343. #define    Ident3    3
  344. #define    Ident4    4
  345. #define    Ident5    5
  346. typedef int    Enumeration;
  347. #else
  348. typedef enum    {Ident1, Ident2, Ident3, Ident4, Ident5} Enumeration;
  349. #endif
  350.  
  351. typedef int    OneToThirty;
  352. typedef int    OneToFifty;
  353. typedef char    CapitalLetter;
  354. typedef char    String30[31];
  355. typedef int    Array1Dim[51];
  356. typedef int    Array2Dim[51][51];
  357.  
  358. struct    Record
  359. {
  360.     struct Record        *PtrComp;
  361.     Enumeration        Discr;
  362.     Enumeration        EnumComp;
  363.     OneToFifty        IntComp;
  364.     String30        StringComp;
  365. };
  366.  
  367. typedef struct Record     RecordType;
  368. typedef RecordType *    RecordPtr;
  369. typedef int        boolean;
  370.  
  371. /*    commented out since we included stdio.h above
  372. #define    NULL        0
  373. */
  374. #define    TRUE        1
  375. #define    FALSE        0
  376.  
  377. #ifndef REG
  378. #define    REG
  379. #endif
  380.  
  381. extern Enumeration    Func1();
  382. extern boolean        Func2();
  383.  
  384. #ifdef TIMES
  385. #include <sys/types.h>
  386. #include <sys/times.h>
  387. #endif
  388.  
  389. /* these lines added for sip simulator */
  390. #include <stdio.h>
  391. FILE *fd;
  392.  
  393. main()
  394. {
  395.     fd = fopen("dhry1.out","w");
  396.     Proc0();
  397.     fclose(fd);
  398.     exit(0);
  399. }
  400.  
  401. /*
  402.  * Package 1
  403.  */
  404. int        IntGlob;
  405. boolean        BoolGlob;
  406. char        Char1Glob;
  407. char        Char2Glob;
  408. Array1Dim    Array1Glob;
  409. Array2Dim    Array2Glob;
  410. RecordPtr    PtrGlb;
  411. RecordPtr    PtrGlbNext;
  412.  
  413. Proc0()
  414. {
  415.     OneToFifty        IntLoc1;
  416.     REG OneToFifty        IntLoc2;
  417.     OneToFifty        IntLoc3;
  418.     REG char        CharLoc;
  419.     REG char        CharIndex;
  420.     Enumeration         EnumLoc;
  421.     String30        String1Loc;
  422.     String30        String2Loc;
  423.     extern char        *malloc();
  424.  
  425. #ifdef TIME
  426.     long            time();
  427.     long            starttime;
  428.     long            benchtime;
  429.     long            nulltime;
  430.     register unsigned int    i;
  431.  
  432.     starttime = time( (long *) 0);
  433.     for (i = 0; i < LOOPS; ++i);
  434.     nulltime = time( (long *) 0) - starttime; /* Computes o'head of loop */
  435. #endif
  436. #ifdef TIMES
  437.     time_t            starttime;
  438.     time_t            benchtime;
  439.     time_t            nulltime;
  440.     struct tms        tms;
  441.     register unsigned int    i;
  442.  
  443.     times(&tms); starttime = tms.tms_utime;
  444.     for (i = 0; i < LOOPS; ++i);
  445.     times(&tms);
  446.     nulltime = tms.tms_utime - starttime; /* Computes overhead of looping */
  447. #endif
  448.  
  449.     PtrGlbNext = (RecordPtr) malloc(sizeof(RecordType));
  450.     PtrGlb = (RecordPtr) malloc(sizeof(RecordType));
  451.     PtrGlb->PtrComp = PtrGlbNext;
  452.     PtrGlb->Discr = Ident1;
  453.     PtrGlb->EnumComp = Ident3;
  454.     PtrGlb->IntComp = 40;
  455.     strcpy(PtrGlb->StringComp, "DHRYSTONE PROGRAM, SOME STRING");
  456. #ifndef    GOOF
  457.     strcpy(String1Loc, "DHRYSTONE PROGRAM, 1'ST STRING");    /*GOOF*/
  458. #endif
  459.     Array2Glob[8][7] = 10;    /* Was missing in published program */
  460.  
  461. /*****************
  462. -- Start Timer --
  463. *****************/
  464. #ifdef TIME
  465.     starttime = time( (long *) 0);
  466. #endif
  467. #ifdef TIMES
  468.     times(&tms); starttime = tms.tms_utime;
  469. #endif
  470.     for (i = 0; i < LOOPS; ++i)
  471.     {
  472.  
  473.         Proc5();
  474.         Proc4();
  475.         IntLoc1 = 2;
  476.         IntLoc2 = 3;
  477.         strcpy(String2Loc, "DHRYSTONE PROGRAM, 2'ND STRING");
  478.         EnumLoc = Ident2;
  479.         BoolGlob = ! Func2(String1Loc, String2Loc);
  480.         while (IntLoc1 < IntLoc2)
  481.         {
  482.             IntLoc3 = 5 * IntLoc1 - IntLoc2;
  483.             Proc7(IntLoc1, IntLoc2, &IntLoc3);
  484.             ++IntLoc1;
  485.         }
  486.         Proc8(Array1Glob, Array2Glob, IntLoc1, IntLoc3);
  487.         Proc1(PtrGlb);
  488.         for (CharIndex = 'A'; CharIndex <= Char2Glob; ++CharIndex)
  489.             if (EnumLoc == Func1(CharIndex, 'C'))
  490.                 Proc6(Ident1, &EnumLoc);
  491.         IntLoc3 = IntLoc2 * IntLoc1;
  492.         IntLoc2 = IntLoc3 / IntLoc1;
  493.         IntLoc2 = 7 * (IntLoc3 - IntLoc2) - IntLoc1;
  494.         Proc2(&IntLoc1);
  495.     }
  496.  
  497. /*****************
  498. -- Stop Timer --
  499. *****************/
  500.  
  501. #ifdef TIME
  502.     benchtime = time( (long *) 0) - starttime - nulltime;
  503. /*
  504.     printf("Dhrystone(%s) time for %ld passes = %ld\n",
  505.         Version,
  506.         (long) LOOPS, benchtime);
  507.     printf("This machine benchmarks at %ld dhrystones/second\n",
  508.         ((long) LOOPS) / benchtime);
  509. */
  510.     fprintf(fd,"Dhrystone(%s) cycles for %ld passes = %ld\n",
  511.         Version,
  512.         (long) LOOPS, benchtime);
  513.     fprintf(fd,"This machine benchmarks at %ld dhrystones/second\n",
  514.         ((long) LOOPS*25000000L) / benchtime);
  515. #endif
  516. #ifdef TIMES
  517.     times(&tms);
  518.     benchtime = tms.tms_utime - starttime - nulltime;
  519.     printf("Dhrystone(%s) time for %ld passes = %ld\n",
  520.         Version,
  521.         (long) LOOPS, benchtime/HZ);
  522.     printf("This machine benchmarks at %ld dhrystones/second\n",
  523.         ((long) LOOPS) * HZ / benchtime);
  524. #endif
  525.  
  526. }
  527.  
  528. Proc1(PtrParIn)
  529. REG RecordPtr    PtrParIn;
  530. {
  531. #define    NextRecord    (*(PtrParIn->PtrComp))
  532.  
  533.     structassign(NextRecord, *PtrGlb);
  534.     PtrParIn->IntComp = 5;
  535.     NextRecord.IntComp = PtrParIn->IntComp;
  536.     NextRecord.PtrComp = PtrParIn->PtrComp;
  537.     Proc3(NextRecord.PtrComp);
  538.     if (NextRecord.Discr == Ident1)
  539.     {
  540.         NextRecord.IntComp = 6;
  541.         Proc6(PtrParIn->EnumComp, &NextRecord.EnumComp);
  542.         NextRecord.PtrComp = PtrGlb->PtrComp;
  543.         Proc7(NextRecord.IntComp, 10, &NextRecord.IntComp);
  544.     }
  545.     else
  546.         structassign(*PtrParIn, NextRecord);
  547.  
  548. #undef    NextRecord
  549. }
  550.  
  551. Proc2(IntParIO)
  552. OneToFifty    *IntParIO;
  553. {
  554.     REG OneToFifty        IntLoc;
  555.     REG Enumeration        EnumLoc;
  556.  
  557.     IntLoc = *IntParIO + 10;
  558.     for(;;)
  559.     {
  560.         if (Char1Glob == 'A')
  561.         {
  562.             --IntLoc;
  563.             *IntParIO = IntLoc - IntGlob;
  564.             EnumLoc = Ident1;
  565.         }
  566.         if (EnumLoc == Ident1)
  567.             break;
  568.     }
  569. }
  570.  
  571. Proc3(PtrParOut)
  572. RecordPtr    *PtrParOut;
  573. {
  574.     if (PtrGlb != NULL)
  575.         *PtrParOut = PtrGlb->PtrComp;
  576.     else
  577.         IntGlob = 100;
  578.     Proc7(10, IntGlob, &PtrGlb->IntComp);
  579. }
  580.  
  581. Proc4()
  582. {
  583.     REG boolean    BoolLoc;
  584.  
  585.     BoolLoc = Char1Glob == 'A';
  586.     BoolLoc |= BoolGlob;
  587.     Char2Glob = 'B';
  588. }
  589.  
  590. Proc5()
  591. {
  592.     Char1Glob = 'A';
  593.     BoolGlob = FALSE;
  594. }
  595.  
  596. extern boolean Func3();
  597.  
  598. Proc6(EnumParIn, EnumParOut)
  599. REG Enumeration    EnumParIn;
  600. REG Enumeration    *EnumParOut;
  601. {
  602.     *EnumParOut = EnumParIn;
  603.     if (! Func3(EnumParIn) )
  604.         *EnumParOut = Ident4;
  605.     switch (EnumParIn)
  606.     {
  607.     case Ident1:    *EnumParOut = Ident1; break;
  608.     case Ident2:    if (IntGlob > 100) *EnumParOut = Ident1;
  609.             else *EnumParOut = Ident4;
  610.             break;
  611.     case Ident3:    *EnumParOut = Ident2; break;
  612.     case Ident4:    break;
  613.     case Ident5:    *EnumParOut = Ident3;
  614.     }
  615. }
  616.  
  617. Proc7(IntParI1, IntParI2, IntParOut)
  618. OneToFifty    IntParI1;
  619. OneToFifty    IntParI2;
  620. OneToFifty    *IntParOut;
  621. {
  622.     REG OneToFifty    IntLoc;
  623.  
  624.     IntLoc = IntParI1 + 2;
  625.     *IntParOut = IntParI2 + IntLoc;
  626. }
  627.  
  628. Proc8(Array1Par, Array2Par, IntParI1, IntParI2)
  629. Array1Dim    Array1Par;
  630. Array2Dim    Array2Par;
  631. OneToFifty    IntParI1;
  632. OneToFifty    IntParI2;
  633. {
  634.     REG OneToFifty    IntLoc;
  635.     REG OneToFifty    IntIndex;
  636.  
  637.     IntLoc = IntParI1 + 5;
  638.     Array1Par[IntLoc] = IntParI2;
  639.     Array1Par[IntLoc+1] = Array1Par[IntLoc];
  640.     Array1Par[IntLoc+30] = IntLoc;
  641.     for (IntIndex = IntLoc; IntIndex <= (IntLoc+1); ++IntIndex)
  642.         Array2Par[IntLoc][IntIndex] = IntLoc;
  643.     ++Array2Par[IntLoc][IntLoc-1];
  644.     Array2Par[IntLoc+20][IntLoc] = Array1Par[IntLoc];
  645.     IntGlob = 5;
  646. }
  647.  
  648. Enumeration Func1(CharPar1, CharPar2)
  649. CapitalLetter    CharPar1;
  650. CapitalLetter    CharPar2;
  651. {
  652.     REG CapitalLetter    CharLoc1;
  653.     REG CapitalLetter    CharLoc2;
  654.  
  655.     CharLoc1 = CharPar1;
  656.     CharLoc2 = CharLoc1;
  657.     if (CharLoc2 != CharPar2)
  658.         return (Ident1);
  659.     else
  660.         return (Ident2);
  661. }
  662.  
  663. boolean Func2(StrParI1, StrParI2)
  664. String30    StrParI1;
  665. String30    StrParI2;
  666. {
  667.     REG OneToThirty        IntLoc;
  668.     REG CapitalLetter    CharLoc;
  669.  
  670.     IntLoc = 1;
  671.     while (IntLoc <= 1)
  672.         if (Func1(StrParI1[IntLoc], StrParI2[IntLoc+1]) == Ident1)
  673.         {
  674.             CharLoc = 'A';
  675.             ++IntLoc;
  676.         }
  677.     if (CharLoc >= 'W' && CharLoc <= 'Z')
  678.         IntLoc = 7;
  679.     if (CharLoc == 'X')
  680.         return(TRUE);
  681.     else
  682.     {
  683.         if (strcmp(StrParI1, StrParI2) > 0)
  684.         {
  685.             IntLoc += 7;
  686.             return (TRUE);
  687.         }
  688.         else
  689.             return (FALSE);
  690.     }
  691. }
  692.  
  693. boolean Func3(EnumParIn)
  694. REG Enumeration    EnumParIn;
  695. {
  696.     REG Enumeration    EnumLoc;
  697.  
  698.     EnumLoc = EnumParIn;
  699.     if (EnumLoc == Ident3) return (TRUE);
  700.     return (FALSE);
  701. }
  702.  
  703. #ifdef    NOSTRUCTASSIGN
  704. memcpy(d, s, l)
  705. register char    *d;
  706. register char    *s;
  707. register int    l;
  708. {
  709.     while (l--) {*d = *s; d++; s++;}
  710. }
  711. #endif
  712.